mark-sweep garbage collection - определение. Что такое mark-sweep garbage collection
Diclib.com
Словарь ChatGPT
Введите слово или словосочетание на любом языке 👆
Язык:

Перевод и анализ слов искусственным интеллектом ChatGPT

На этой странице Вы можете получить подробный анализ слова или словосочетания, произведенный с помощью лучшей на сегодняшний день технологии искусственного интеллекта:

  • как употребляется слово
  • частота употребления
  • используется оно чаще в устной или письменной речи
  • варианты перевода слова
  • примеры употребления (несколько фраз с переводом)
  • этимология

Что (кто) такое mark-sweep garbage collection - определение

AUTOMATIC MEMORY MANAGEMENT THAT TRACES WHICH OBJECTS ARE REACHABLE BY A CHAIN OF REFERENCES FROM ROOT OBJECTS AND DEALLOCATES THE REST
Conservative garbage collector; Mark and sweep; Tracing garbage collector; Generational garbage collection; Mark-and-sweep; Stop and copy; Stop-and-copy; Conservative garbage collection; Stop-the-world; Mark–sweep algorithm; Tri-colour marking; Tri-color marking; Generational garbage collector; Mark-sweep algorithm
  • object references]]. Circles represent the objects themselves.  Objects #1, #2, #3, #4, and #6 are strongly referenced from the root set. On the other hand, objects #5, #7, and #8 are not strongly referenced either directly or indirectly from the root set; therefore, they are garbage.
  • 
An example of tri-color marking on a heap with 8 objects. 
White, grey, and black objects are represented by light-grey, yellow, and blue, respectively.
Найдено результатов: 4459
mark-sweep garbage collection      
Each cell has a bit reserved for marking which is clear initially. During garbage collection all active cells are traced from the root and marked. Then all cells are examined. Unmarked cells are freed.
garbage collection         
  • A waste collection barge in [[Venice]], Italy.
  • Waste on a sidewalk for collection, bagged and stickered - in [[Dublin]], [[Ireland]]
  • Bukit Batok West]], Singapore.
PROCESS OF COLLECTING WASTE
Garbage Collection; Garbage Collector; Civic garbage collection; Waste Collection; Trash pickup; Refuse collection; Garbage collecting; Garbage collection
<programming> (GC) The process by which dynamically allocated storage is reclaimed during the execution of a program. The term usually refers to automatic periodic storage reclamation by the garbage collector (part of the run-time system), as opposed to explicit code to free specific blocks of memory. Automatic garbage collection is usually triggered during memory allocation when the amount free memory falls below some threshold or after a certain number of allocations. Normal execution is suspended and the garbage collector is run. There are many variations on this basic scheme. Languages like Lisp represent expressions as graphs built from cells which contain pointers and data. These languages use automatic dynamic storage allocation to build expressions. During the evaluation of an expression it is necessary to reclaim space which is used by subexpressions but which is no longer pointed to by anything. This reclaimed memory is returned to the free memory pool for subsequent reallocation. Without garbage collection the program's memory requirements would increase monotonically throughout execution, possibly exceeding system limits on virtual memory size. The three main methods are mark-sweep garbage collection, reference counting and copying garbage collection. See also the AI koan about garbage collection. (1997-08-25)
garbage collector         
  • A waste collection barge in [[Venice]], Italy.
  • Waste on a sidewalk for collection, bagged and stickered - in [[Dublin]], [[Ireland]]
  • Bukit Batok West]], Singapore.
PROCESS OF COLLECTING WASTE
Garbage Collection; Garbage Collector; Civic garbage collection; Waste Collection; Trash pickup; Refuse collection; Garbage collecting; Garbage collection
¦ noun
1. N. Amer. a dustman.
2. Computing a program that automatically removes unwanted data held temporarily in memory during processing.
garbage collector         
  • A waste collection barge in [[Venice]], Italy.
  • Waste on a sidewalk for collection, bagged and stickered - in [[Dublin]], [[Ireland]]
  • Bukit Batok West]], Singapore.
PROCESS OF COLLECTING WASTE
Garbage Collection; Garbage Collector; Civic garbage collection; Waste Collection; Trash pickup; Refuse collection; Garbage collecting; Garbage collection
(garbage collectors)
A garbage collector is a person whose job is to take people's garbage away. (AM; in BRIT, use dustman
)
N-COUNT
Waste collection         
  • A waste collection barge in [[Venice]], Italy.
  • Waste on a sidewalk for collection, bagged and stickered - in [[Dublin]], [[Ireland]]
  • Bukit Batok West]], Singapore.
PROCESS OF COLLECTING WASTE
Garbage Collection; Garbage Collector; Civic garbage collection; Waste Collection; Trash pickup; Refuse collection; Garbage collecting; Garbage collection
Waste collection is a part of the process of waste management. It is the transfer of solid waste from the point of use and disposal to the point of treatment or landfill.
Tracing garbage collection         
In computer programming, tracing garbage collection is a form of automatic memory management that consists of determining which objects should be deallocated ("garbage collected") by tracing which objects are reachable by a chain of references from certain "root" objects, and considering the rest as "garbage" and collecting them. Tracing garbage collection is the most common type of garbage collection – so much so that "garbage collection" often refers to tracing garbage collection, rather than other methods such as reference counting – and there are a large number of algorithms used in implementation.
Sweep rowing         
  • College women's eights during [[Oxford University]] [[Eights Week]]
TYPE OF ROWING WHEN A ROWER HAS ONE OAR
Sweep oar; Sweep rower; Sweep (rowing)
Sweep rowing is one of two disciplines of the sport of rowing. In sweep rowing each rower has one oar, usually held with both hands.
Garbage collection (computer science)         
  • After that, the working memory contents is discarded in favor of the compressed copy, and the role of ''working'' and ''free'' memory are exchanged (depicted).
FORM OF AUTOMATIC MEMORY MANAGEMENT
Computer memory garbage collection; Automatic memory management; Automatic garbage collection; Deterministic garbage collector; Garbage collection (computing); Garbage collector (computing); Garbage collector (computer science); Generational GC; Object pinning; Root set; Stop-the-world gc; Moving garbage collector; Garbage collected language; Garbage collected; Compacting garbage collection; Parallel scavenge garbage collector; Compile-time garbage collection
In computer science, garbage collection (GC) is a form of automatic memory management. The garbage collector attempts to reclaim memory which was allocated by the program, but is no longer referenced; such memory is called garbage.
Packers sweep         
  • alt=A diagram showing how the Packers sweep was run. The diagram identifies the offensive and defensive positions as they would normally line up. Each position is denoted by a circle with the acronym of their position inside of it. There are lines showing the direction the offensive players are supposed to move and who they are supposed to block.
  • A simple [[T formation]], shown here, served as the basis for the Packers sweep.
RUNNING PLAY POPULARIZED BY VINCE LOMBARDI AND THE GREEN BAY PACKERS DURING THE 1960S
Packer Sweep; Lombardi sweep; Packer sweep
The Packers sweep, also known as the Lombardi sweep, is an American football play popularized by Green Bay Packers coach Vince Lombardi. The Packers sweep is based on the sweep, a football play that involves a back taking a handoff and running parallel to the line of scrimmage before turning upfield behind lead blockers.
Distributed garbage collection         
Distributed Garbage Collection
Distributed garbage collection (DGC) in computing is a particular case of garbage collection where a remote client can hold references to an object.

Википедия

Tracing garbage collection

In computer programming, tracing garbage collection is a form of automatic memory management that consists of determining which objects should be deallocated ("garbage collected") by tracing which objects are reachable by a chain of references from certain "root" objects, and considering the rest as "garbage" and collecting them. Tracing garbage collection is the most common type of garbage collection – so much so that "garbage collection" often refers to tracing garbage collection, rather than other methods such as reference counting – and there are a large number of algorithms used in implementation.